.reviewcontent {
    font-family: Arial, sans-serif;
    padding: 20px;
    width: 100%;
    background-color: rgb(60, 60, 60);
}

#reviewcontent-inner {
    width: 600px;
    margin: auto;
}

.review {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    margin: 20px;
    max-width: 500px;
    border-radius: 5px;

}

.person-icon {
    font-size: 24px;
    color: #333;
}

.stars {
    color: #f0c929;
}

.stars::before {
    letter-spacing: 1px;
}

.review:nth-child(odd) {
    transform: translate(25%, 0%);
}

.review:nth-child(even) {
    transform: translate(-25%, 0%);
}

@media only screen and (max-width: 970px) {

    .review:nth-child(odd) {
        transform: none;
        margin: auto;
    }
    
    .review:nth-child(even) {
        transform: none;
    }
    
}

@media only screen and (max-width: 640px) {

    #reviewcontent-inner{
        width: 100%;
    }
    
}